📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv11.demodesign.com.tr
/
system
/
library
/
journal3
/
utils
📝
str.php
← Geri Dön
<?php namespace Journal3\Utils; class Str { public static function toBool($string) { $string = (string)$string; if ($string === '0') { return 'false'; } if ($string === '1') { return 'true'; } return ''; } public static function fromBool($bool) { if ($bool === 'false') { return 0; } if ($bool === 'true') { return 1; } return 2; } public static function startsWith($haystack, $needle) { return strpos($haystack, $needle) === 0; } public static function endsWith($haystack, $needle) { return substr($haystack, -strlen($needle)) === $needle; } public static function concatIfNotEmpty($src, $string) { return $src ? $src . $string : $src; } public static function contains($haystack, $needle) { return strpos($haystack, $needle) !== false; } public static function YoutubeId($url) { // http://stackoverflow.com/a/37186299 $pattern = '%^# Match any youtube URL (?:https?://)? # Optional scheme. Either http or https (?:www\.)? # Optional www subdomain (?: # Group host alternatives youtu\.be/ # Either youtu.be, | youtube\.com # or youtube.com (?: # Group path alternatives /embed/ # Either /embed/ | /v/ # or /v/ | /watch\?v= # or /watch\?v= ) # End path alternatives. ) # End host alternatives. ([\w-]{10,12}) # Allow 10-12 for 11 char youtube id. $%x'; $result = preg_match($pattern, $url, $matches); if ($result) { return $matches[1]; } return false; } public static function VimeoId($url) { return substr(parse_url($url, PHP_URL_PATH), 1); } public static function urlPathEncode($url) { // https://stackoverflow.com/a/10903374 $path = parse_url($url, PHP_URL_PATH); if (strpos($path, '%') !== false) { return $url; //avoid double encoding } $encoded_path = array_map('urlencode', explode('/', $path)); return str_replace($path, implode('/', $encoded_path), $url); } }
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula