PHP String 简单操作总结

Categories: PHP; Tagged with: ; @ August 28th, 2010 11:23

1. String 长度: strlen($this->notifyEmailTo)

2. Trim: trim($str); // 清除\0, \t, \n等字符

3. Split: explode(",", $str); // 以","隔开的string组成的数组

4. IndexOf:  strrpos ( string $haystack , string $needle [, int $offset = 0 ] )

5. Replace: str_replace("{ID}", $this->id, "ServerID: {ID}");

补充:

indexOf:  $indexOfAt = strrpos($mailAdd, "@");

SubString: $userName = substr($mailAdd, 0, $indexOfAt);

使用PHP运行Shell命令 – PHP Ajax Shell

Categories: LinuxPHP; Tagged with: ; @ August 17th, 2010 23:07

对于PHP的虚拟主机, 有时需要查看系统配置或是运行其他的Shell命令,

网上有很多类似的代码, 一般来说很短一个PHP文件即可运行Shell命令, 便于更方便的管理虚拟主机.

image (more…)

Vi Reference Card 常用命令表

Categories: Linux; Tagged with: ; @ August 5th, 2010 22:06

仅罗列我个人常用的VI命令. 很少, 很简单.
>>点此进入Vi ReferenceCard.pdf下载页面<<

Linux下设置Java Environment(环境变量)

Categories: JavaLinux; Tagged with: ; @ August 5th, 2010 21:47

今天在安装好Java后, 设置了环境变量, 并且source了profile一次, java -version, 测试成功;
后来用putty在外面用的时候发现java变量未生效. vi profile, 文件中变量已设置. 后来才知道每次Source /etc/profile, 只是在当前Terminal内有效… 因此在重启以前, 每次新开的Terminal都需要先source下 profile.

附, 环境变量设置:

#vi /etc/profile

shift+g跳到文件末尾, 追加:

export JAVA_HOME=/usr/lib/jdk
export PATH=$PATH:$JAVA_HOME/bin

Linux下Apache安装及配置

Categories: Linux; Tagged with: ; @ August 5th, 2010 21:34

Apache yum安装, httpd.conf配置, Service操作
image

(more…)

Newer Posts <-> Older Posts



// Proudly powered by Apache, PHP, MySQL, WordPress, Bootstrap, etc,.