原创 GNU Make 手冊第二章節

GNU Make 手冊第二章節2 An Introduction to Makefiles2.1 What a Rule Looks Like2.2 A Simple Makefile2.3 A How make Processe

原创 Windows 7 x64 下 VS2012/VS2013 編譯 PHP5.6

資源下載 php-sdk-binary-tools-20110915.zip deps-5.6-vc11-x64.7z php-5.6.8-src.zip 請自行下載安裝VS2012或VS2013 開始編譯 1. 創建文件夾

原创 PHP 源碼編碼標準

=========================================== PHP Coding Standards PHP 源碼編碼標準 =======================================

原创 PHP字符串函數之 strstr stristr strchr strrchr

PHP字符串函數之 strstr stristr strchr strrchr strstr – 查找字符串的首次出現,返回字符串從第一次出現的位置開始到該字符串的結尾或開始。 stristr – strstr 函數的忽略大

原创 GNU Autoconf Introduction

下載地址:https://www.gnu.org/software/autoconf/manual/autoconf.pdf Autoconf is a tool for producing shell scripts that aut

原创 C Language Standards Supported by GCC (GCC 支持的C語言標準)

Using the GNU Compiler Collection Language Standards Supported by GCC GCC支持的語言標準 For each language compiled by GCC for

原创 PHP字符串函數之 strcmp strncmp strcasecmp strncasecmp strnatcmp strnatcasecmp

PHP字符串函數之 strcmp strncmp strcasecmp strncasecmp strnatcmp strnatcasecmp strcmp – 二進制安全字符串比較 strncmp – 二進制安全比較字符串開頭的若

原创 The GNU Build System

2. The GNU Build System Autoconf solves an important problem —reliable discovery of system-specifc build and runtime i

原创 編譯php7.1.4出現 undefined reference to isfinite

我在 CentOS5.5 上編譯 php7.1.4 出現錯誤: ext/standard/.libs/var.o: In function `php_var_export_ex': /PHP/32/source/php7.1.4_zts/

原创 C語言各類型在x86與x64環境下的長度

struct T { char a; int b; char c; }; struct E { }; // Linux 平臺 (基於 CentOS6.5) printf("%d\n", sizeof(struc

原创 PHP字符串函數之 strpos stripos strrpos strripos

PHP字符串函數之 strpos stripos strrpos strripos strpos – 查找字符串首次出現的位置 stripos – 查找字符串首次出現的位置(不區分大小寫) strrpos – 計算指定字符串在目標字

原创 GCC Command Options ( GCC 命令行選項 )

Using the GNU Compiler Collection 3 GCC Command Options When you invoke GCC, it normally does preprocessing, compilatio

原创 What is COM, COM+? (什麼是COM, COM+?)

What is COM? 什麼是COM? Microsoft COM (Component Object Model) technology in the Microsoft Windows-family of Operating Sys

原创 Options Controlling the Kind of Output ( 控制輸出種類的選項 )

翻譯這篇文章時明顯感覺到難度加大,個別句子暫時無法理解,已用大號字體標出,希望以後能夠補上 Using the GNU Compiler Collection 3 GCC Command Options 3.2 Options Cont

原创 PHP字符串函數之 trim ltrim rtrim chop

PHP字符串函數之 trim ltrim rtrim chop trim – 去除字符串首尾處的空白字符(或者其他字符) ltrim – 刪除字符串開頭的空白字符(或其他字符) rtrim – 刪除字符串末端的空白字符(或者其他字符