<?php
echo substr('abcdef', 1); // bcdef
?>
$str = "The quick brown fox jumps over the lazy dog."
$str2 = substr($str, 4); // "quick brown fox jumps over the lazy dog."
<?php
$string = "hello world";
// create a substring starting 1 character from
// the beginning and ending 1 character from the end
$trimmed = substr($string, 1, -1);
echo $trimmed; // prints "ello worl"
$str = substr($str, 1);
$str = "The quick brown fox jumps over the lazy dog."
$str2 = substr($str, 4); // "quick brown fox jumps over the lazy dog."
echo trim(strstr("How are you?"," ")); //are you?
$str = '::f:o:';
$str = ltrim($str, ':');
var_dump($str); //=> 'f:o:'
Code Example |
---|
:: php echo selected option |
:: |
:: |
:: php get post json data |
:: |
:: |
:: |
Php :: |
:: |
:: laravel set session timeout |
:: |
Php :: |
:: |
Php :: |
:: |
Php :: |
Php :: php foreach string in array |
:: |
Php :: php time to date |
:: Laravel adding Foreign Key Constraints |
:: |
:: |
Php :: |
:: |
:: |
:: |
Php :: |
:: |
:: |
Php :: |