Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例:
$hello = "Hello World"; $trimmed = ltrim($hello, "Hdle"); var_dump($trimmed);
結果は次のとおりです。
string(7) "o World"
2番目の単語で削除dされなかったのはなぜですか?l
d
l
を使用しているためltrim、左をトリムします。trimトリミングは両サイドのみ。
ltrim
trim