setSpacesRE 【初心者向けWordPressブログ始め方!完全解説】

TCPDFは、PDFドキュメントを生成するためのPHPクラスです。TCPDFは2002年に初めて公開され開発が進められてきた無料のオープンソースソフトウェアです。現在公開されているPHPのPDFライブラリはいくつかありますが、その中でも機能面で一番優れていて実績もあります。

setSpacesRE( $re = ‘/[^Sxa0]/’ )
‘Set regular expression to detect withespaces or word separators. The pattern delimiter must be the forward-slash character ”/”. Some example patterns are:
Non-Unicode or missing PCRE unicode support: ”/[^Sxa0]/”
Unicode and PCRE unicode support: ”/(?!xa0)[sp{Z}]/u”
Unicode and PCRE unicode support in Chinese mode: ”/(?!xa0)[sp{Z}p{Lo}]/u”
if PCRE unicode support is turned ON (”P” is the negate class of ”p”):
s : any whitespace character
p{Z} : any separator
p{Lo} : Unicode letter or ideograph that does not have lowercase and uppercase variants. Is used to chunk chinese words.
xa0 : Unicode Character ‘NO-BREAK SPACE’ (U+00A0)’


タイトルとURLをコピーしました