php chop() 函式
例項移除字串右側的字元:
<?p www.cppcns.comhp
$str =程式設計客棧 "hello world!";
echo $str . "
"; echo chop($str,"world!");
?>
定義和用法
chop() 函式移除字串右側的空白字元或其他預定義字元。
語法chop( _strwww.cppcns.coming,charlist_ )
例項 1
移除字串右側的換行符(\n):
<?php $str = "hello world!程式設計客棧\n\n";
echo $str;
echo chop($str);
?>
上面**的 html 輸出如下(檢視源**):
hello world!
hello world!
上面**的瀏覽器輸出如下:
hello world! hello world!
總結
chop函式 PHP chop()函式與示例
chop函式 chop functionis a string function in php,it is used to remove the whitespaces or and specified character string from the end of the string.chop...
母函式講解
例項講解1 有1g,2g,3g,4g四個重量的砝碼各乙個,問它們能稱出哪些重量來?能稱出的每一種重量有幾種方案?我們用x的指數來表示乙個砝碼能貢獻的重量,x的係數表示貢獻這種重量的方案數,不同的貢獻之間用加號連線 1g砝碼能貢獻 x 0 x 1 1 x 2g砝碼能貢獻 x 0 x 2 1 x 2 3...
oracle rank 函式講解
oracle rank 分析函式 分為 1 連續或不連續 dense rank,rank 2 分割槽或不分割槽 使用partition,不使用partition 舉例 student表資料 sno編號,sname姓名,course科目,score成績 1.對比rank和dense rank 1 使用...