Home > Backend Development > PHP Tutorial > 初次接触php

初次接触php

WBOY
Release: 2016-06-23 14:32:25
Original
945 people have browsed it

这段时间一直在学php,而且时不时的想写个script来代替手工操作。今天就完成了一个简单的script:将文件中的关于数字的字符串替换成随机数字。这个script里面主要应用了以下几点: 1)读写文件 2)随机数的生成 3)替换
主要是替换最为麻烦,因为里面牵涉到正则表达式。

一、文件的读写
//读取文件中的每一行
//将$str写到文件里
$fp1 = fopen($filename1,"r");
$fp2 = fopetn($filename2,"w+")
while (!feof($fp1))
$str = fgets($fp1);
fwrtie($fp2,$str);

二、随机数的生成
rand(1,100)
随机产生1-100之间的整数

三、替换
preg_replace():执行正则表达式的搜索和替换
preg_replace($pattern,$replacement,$str)
$pattern: 搜索的模式
$replacement:替换的字符
$str: 要进行搜索和替换的字符串


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template