Display the drop-down list

ltrim()

« long2ip | max »
<?php
$string 
ltrim (
    
// string $str
    
  // [string $charlist]
);
?>
Result
$string = 'These are a few words :) ...  '
Examples
#1 ltrim  ("\t\tThese are a few words :) ... ")
#2 ltrim  ("\t\tThese are a few words :) ... ",
 
" \t.")
#3 ltrim  ("Hello World",
 
"Hdle")
#4 ltrim  ("\tExample string\n",
 
"\x00..\x1F")
See also
rtrim, trim