📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv11.demodesign.com.tr
/
system
/
library
/
journal3
/
utils
📝
profiler.php
← Geri Dön
<?php namespace Journal3\Utils; class Profiler { private static $keys = array(); public static function start($key) { if (static::isJournalKey($key)) { static::$keys[$key] = Arr::get(static::$keys, $key, 0) - round(microtime(true) * 1000); } } public static function end($key) { if (static::isJournalKey($key)) { static::$keys[$key] = Arr::get(static::$keys, $key, 0) + round(microtime(true) * 1000); } } public static function getStats() { return array_filter(static::$keys, array(__CLASS__, 'filterStats')); } private static function isJournalKey($key) { return strpos($key, 'journal3') !== false; } private static function filterStats($value) { return $value >= 0; } }
💾 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