The CakeText class includes convenience methods for creating and
manipulating strings and is normally accessed statically. Example:
CakeText::uuid()
.
Deprecated since version 2.7: The String
class was deprecated in 2.7 in favour of the
CakeText
class. While the String
class is still available
for backwards compatibility, using CakeText
is recommended as it offers
compatibility with PHP7 and HHVM.
If you need TextHelper
functionalities outside of a View
,
use the CakeText
class:
class UsersController extends AppController {
public $components = array('Auth');
public function afterLogin() {
App::uses('CakeText', 'Utility');
$message = $this->User->find('new_message');
if (!empty($message)) {
// notify user of new message
$this->Session->setFlash(__('You have a new message: %s', CakeText::truncate($message['Message']['body'], 255, array('html' => true))));
}
}
}
Changed in version 2.1: Several methods from TextHelper
have been moved to
CakeText
class.
The UUID method is used to generate unique identifiers as per RFC 4122. The UUID is a 128bit string in the format of 485fc381-e790-47a3-9794-1337c0a8fe68.
CakeText::uuid(); // 485fc381-e790-47a3-9794-1337c0a8fe68
Tokenizes a string using $separator
, ignoring any instance of
$separator
that appears between $leftBound
and $rightBound
.
This method can be useful when splitting up data in that has regular formatting such as tag lists:
$data = "cakephp 'great framework' php";
$result = CakeText::tokenize($data, ' ', "'", "'");
// result contains
array('cakephp', "'great framework'", 'php');
The insert method is used to create string templates and to allow for key/value replacements:
CakeText::insert('My name is :name and I am :age years old.', array('name' => 'Bob', 'age' => '65'));
// generates: "My name is Bob and I am 65 years old."
Cleans up a CakeText::insert
formatted string with given $options
depending on the ‘clean’ key in $options. The default method used
is text but html is also available. The goal of this function is to
replace all whitespace and unneeded markup around placeholders that
did not get replaced by Set::insert.
You can use the following options in the options array:
$options = array(
'clean' => array(
'method' => 'text', // or html
),
'before' => '',
'after' => ''
);
Wraps a block of text to a set width, and indent blocks as well. Can intelligently wrap text so words are not sliced across lines:
$text = 'This is the song that never ends.';
$result = CakeText::wrap($text, 22);
// returns
This is the song
that never ends.
You can provide an array of options that control how wrapping is done. The supported options are:
width
The width to wrap to. Defaults to 72.
wordWrap
Whether or not to wrap whole words. Defaults to true.
indent
The character to indent lines with. Defaults to ‘’.
indentAt
The line number to start indenting text. Defaults to 0.
$haystack (string
) – The string to search.
$needle (string
) – The string to find.
$options (array
) – An array of options, see below.
Highlights $needle
in $haystack
using the
$options['format']
string specified or a default string.
Options:
‘format’ - string The piece of HTML with that the phrase will be highlighted
‘html’ - bool If true, will ignore any HTML tags, ensuring that only the correct text is highlighted
Example:
// called as TextHelper
echo $this->Text->highlight(
$lastSentence,
'using',
array('format' => '<span class="highlight">\1</span>')
);
// called as CakeText
App::uses('CakeText', 'Utility');
echo CakeText::highlight(
$lastSentence,
'using',
array('format' => '<span class="highlight">\1</span>')
);
Output:
Highlights $needle in $haystack <span class="highlight">using</span>
the $options['format'] string specified or a default string.
Strips the supplied $text
of any HTML links.
$text (string
) – The text to truncate.
$length (int
) – The length, in characters, beyond which the text should be truncated.
$options (array
) – An array of options to use.
If $text
is longer than $length
characters, this method truncates it
at $length
and adds a suffix consisting of 'ellipsis'
, if defined.
If 'exact'
is passed as false
, the truncation will occur at the
first whitespace after the point at which $length
is exceeded. If
'html'
is passed as true
, HTML tags will be respected and will not
be cut off.
$options
is used to pass all extra parameters, and has the
following possible keys by default, all of which are optional:
array(
'ellipsis' => '...',
'exact' => true,
'html' => false
)
Example:
// called as TextHelper
echo $this->Text->truncate(
'The killer crept forward and tripped on the rug.',
22,
array(
'ellipsis' => '...',
'exact' => false
)
);
// called as CakeText
App::uses('CakeText', 'Utility');
echo CakeText::truncate(
'The killer crept forward and tripped on the rug.',
22,
array(
'ellipsis' => '...',
'exact' => false
)
);
Output:
The killer crept...
Changed in version 2.3: ending
has been replaced by ellipsis
. ending
is still used in 2.2.1
$text (string
) – The text to truncate.
$length (int
) – The length, in characters, beyond which the text should be truncated.
$options (array
) – An array of options to use.
If $text
is longer than $length
characters, this method removes an initial
substring with length consisting of the difference and prepends a prefix
consisting of 'ellipsis'
, if defined. If 'exact'
is passed as
false
, the truncation will occur at the first whitespace prior to the
point at which truncation would otherwise take place.
$options
is used to pass all extra parameters, and has the
following possible keys by default, all of which are optional:
array(
'ellipsis' => '...',
'exact' => true
)
New in version 2.3.
Example:
$sampleText = 'I packed my bag and in it I put a PSP, a PS3, a TV, ' .
'a C# program that can divide by zero, death metal t-shirts'
// called as TextHelper
echo $this->Text->tail(
$sampleText,
70,
array(
'ellipsis' => '...',
'exact' => false
)
);
// called as CakeText
App::uses('CakeText', 'Utility');
echo CakeText::tail(
$sampleText,
70,
array(
'ellipsis' => '...',
'exact' => false
)
);
Output:
...a TV, a C# program that can divide by zero, death metal t-shirts
$haystack (string
) – The string to search.
$needle (string
) – The string to excerpt around.
$radius (int
) – The number of characters on either side of $needle you want to include.
$ellipsis (string
) – Text to append/prepend to the beginning or end of the result.
Extracts an excerpt from $haystack
surrounding the $needle
with a number of characters on each side determined by $radius
,
and prefix/suffix with $ellipsis
. This method is especially handy for
search results. The query string or keywords can be shown within
the resulting document.
// called as TextHelper
echo $this->Text->excerpt($lastParagraph, 'method', 50, '...');
// called as CakeText
App::uses('CakeText', 'Utility');
echo CakeText::excerpt($lastParagraph, 'method', 50, '...');
Output:
... by $radius, and prefix/suffix with $ellipsis. This method is
especially handy for search results. The query...
$list (array
) – Array of elements to combine into a list sentence.
$and (string
) – The word used for the last join.
Creates a comma-separated list where the last two items are joined with ‘and’.
// called as TextHelper
echo $this->Text->toList($colors);
// called as CakeText
App::uses('CakeText', 'Utility');
echo CakeText::toList($colors);
Output:
red, orange, yellow, green, blue, indigo and violet