例如:
example #1 iconv()example
<?php
$text
= "this is the euro symbol '€'."
;echo
'original : '
, $text
, php_eol
;echo
'translit : '
, iconv
("utf-8"
, "iso-8859-1//translit"
, $text
), php_eol
; //將不能直接轉化的字元變成乙個或多個近似的字元echo
'ignore : '
, iconv
("utf-8"
, "iso-8859-1//ignore"
, $text
), php_eol
; //會忽略掉不能轉化的字元
echo
'plain : '
, iconv
("utf-8"
, "iso-8859-1"
, $text
), php_eol
;?>
the above example will output something similar to:
original : this is the euro symbol '€'.translit : this is the euro symbol 'eur'.
ignore : this is the euro symbol ''.
plain :
notice: iconv(): detected an illegal character in input string in .\iconv-example.php on line 7
this is the euro symbol '
參考:
json encode 的第二個引數詳解
下列常量由此擴充套件定義,且僅在此擴充套件編譯入 php 或在執行時動態載入時可用。以下常量表示了 json last error 所返回的錯誤型別。json error none integer 沒有錯誤發生。自 php 5.3.0 起生效。json error depth integer 到達了...
kmalloc第二個引數的意義
最近在進行linux核心程式設計的時候使用到了kmalloc用於申請記憶體,kmalloc與mlloc相似,用於獲取一段連續的記憶體空間,其不會對獲取到的記憶體空間清零。kmlloc的原型是void kmalloc size t size,int flags 第乙個引數size表示要分配的記憶體大小...
jQuery 方法的第二個引數
關於jquery 方法的第二個引數,有下面這幾種用法 1.jquery selector,context 這種用法,相當於 context find selector 或者 context.find selector 2.jquery html,ownerdocument 文件對ownerdocum...