php 刪除雙引號(hào)
2024-02-15 17:10:17
在PHP中,你使用str_replace()函數(shù)或者preg_replace()函數(shù)來(lái)刪除雙引號(hào)。
```php
$str = '"Hello, World!"';
$newStr = str_replace('"', '', $str);
Hello, World!
```
以上代碼將會(huì)刪除字符串中的所有雙引號(hào)。
在PHP中,你使用str_replace()函數(shù)或者preg_replace()函數(shù)來(lái)刪除雙引號(hào)。
```php
$str = '"Hello, World!"';
$newStr = str_replace('"', '', $str);
Hello, World!
```
以上代碼將會(huì)刪除字符串中的所有雙引號(hào)。