显示下拉菜单

ltrim()

« long2ip | max »
<?php
$string 
ltrim (
    
// string $str
    
  // [string $charlist]
);
?>
结果
$string = 'These are a few words :) ...  '
示例
#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")
另请参阅
rtrim, trim