📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
hesapsatisv1.demodesign.com.tr
/
application
/
hooks
📝
OutputCompress.php
← Geri Dön
<?php class OutputCompress { protected $CI; public function __construct() { $this->CI =& get_instance(); } public function compress() { $buffer = $this->CI->output->get_output(); $search = array( '/\n/', '/\>[^\S ]+/s', '/[^\S ]+\</s', '/(\s)+/s' ); $replace = array( ' ', '>', '<', '\\1' ); $buffer = preg_replace($search, $replace, $buffer); $this->CI->output->set_output($buffer); $this->CI->output->_display(); } }
💾 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