Gelişmiş trim fonksiyonu. function WarnerTrim($text) { if($text != "") { $text = str_replace(chr(160), " ", $text); // remove alt + 0160 $text = str_replace(chr(173), " ", $text); // remove alt + 0173… dahası →
PHP WARNERsabanulutas wrote 6 months ago: Bu; String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g,""); } Yada şu; function t … more →
mesut cakir wrote 1 year ago: Chars : Belirlenmiş bir karakterin yerine karakter ekler. Length : Stringdeki karakter sayısını ver … more →
phpwarner wrote 1 year ago: Gelişmiş trim fonksiyonu. function WarnerTrim($text) { if($text != "") { $text = str_replace(chr(160 … more →