Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php string take part

<?php
$str = "Africa Beautiful!";
echo substr($str, 0, 6);  // Outputs: Africa
echo substr($str, 0, -10); // Outputs: Beautiful
echo substr($str, 0);     // Outputs: Africa Beautiful!
?>
 
PREVIOUS NEXT
Tagged: #php #string #part
ADD COMMENT
Topic
Name
7+9 =