当前位置 : 主页 > 网络编程 > PHP >

php字符串去掉中文

来源:互联网 收集:自由互联 发布时间:2021-06-30
windows项目迁移到linux中。有很多文件名字是中文。写个脚本批量改名。 1. [代码] 去掉字符串中的中文 $a = "a河蟹社会afeowahgieawhjozf候蛇fawgwea维稳aghoiawghowi我日/a";$result = preg_replace('/([\x
windows项目迁移到linux中。有很多文件名字是中文。写个脚本批量改名。

1. [代码]去掉字符串中的中文    

$a = "<a>河蟹社会afeowahgieawhjozf候蛇fawgwea维稳aghoiawghowi我日</a>";
$result = preg_replace('/([\x80-\xff]*)/i','',$a);
var_dump($result);

2. [代码][PHP]代码    

<?php
try
{
    $hostname = "localhost";
    $dbname = "xxxx";
    $username = "root";
    $pw = "xxxx";
    $pdo = new PDO ("mysql:host=$hostname;dbname=$dbname", "$username", "$pw");
    $db->query("set names utf-8");
} 
catch (PDOException $e)
{
    echo "Failed to get DB handle: " . $e -> getMessage() . "\n";
    exit;
} 
$query = $pdo -> prepare("select id,store_image FROM store");
$query -> execute();

for($i = 0; $row = $query -> fetch(); $i++)
{
    $new_file = preg_replace('/([\x80-\xff]*)/i', '',$row['store_image']);
    $id=$row['id'];
    $sql="update store set store_image='$new_file' where id=$id";
    $pdo->exec($sql);    
} 

/*
$it = new RecursiveDirectoryIterator("./avatar");
foreach(new RecursiveIteratorIterator($it) as $file)
{
    echo $file . "\n";
    $new_file = preg_replace('/([\x80-\xff]*)/i', '', $file);
    rename($file, $new_file);
} 
*/
上一篇:phpcms TAG伪静态
下一篇:php+ajax 城市联动
网友评论