Sort an array of associative arrays by column value ( 배열 정렬 – value 이용 )
$category = Array ( [0] => Array ( [term_id] => 7 [name] => MY PROJECT [sort] => 2 ) [1] […]
Dompdf does NOT render images well with remote urls
use Dompdf\Options; use finfo // function function encode_img_base64( $img_path = false, $img_type = ‘png’ ){ […]
PHP Expiry day : How to convert datetime(mysql) to mktime of php
function getMktimeNumber($type,$date) { if($type > 0) { $convert […]
PHP Check PC or mobile on device
function isMobile(){return preg_match(“/(android|avantgo|blackberry|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i”, $_SERVER[“HTTP_USER_AGENT”]);} if(isMobile()){ echo ‘Mobile’;}else{ echo ‘PC’;}
PHP CI – index.hml 없애기 – 3
<Directory /home/testuser/www/> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory>
PHP CI – index.hml 없애기 – 2
application/config/config.php 파일의 아래와 같이 빈칸으로 변경 $config[‘index_page’] = ”; 아래와 같이 CI 가 설치 폴더의 처음 열리는 index.php 있는 폴더에 […]