gpt4 book ai didi

php - 我如何删除 http ://www in form?

转载 作者:可可西里 更新时间:2023-11-01 16:50:14 26 4
gpt4 key购买 nike

我要删除

https://www<br>
http://www <br>
https://<br>
http://<br>

形式如下:

<form class="well" action="process.php">
<input type="text" name="q" placeholder="{$lang.placeholder}" x-webkit-speech>
<select name="t">
<option value="domain">{$lang.domain}</option>
<option value="ip">{$lang.ip}</option>
<option value="nameserver">{$lang.nameserver}</option>
</select>
<button type="submit" class="btn"><i class="icon"></i> {$lang.button}</button>

你们有小费吗?

最佳答案

使用数组和 str_replace :

$remove = array('https://', 'http://www', 'https://', 'http://');

$test='http://stackoverflow.com/questions/18464723/how-do-i-remove-http-www-in-form';

echo str_replace($remove, '', $test);

输出:

stackoverflow.com/questions/18464723/how-do-i-remove-http-www-in-form

关于php - 我如何删除 http ://www in form?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18464723/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com