dsuoedtom207012191 2018-02-12 20:53
浏览 73
已采纳

从PHP输入文本字段中删除某个字符串,然后将其保存到MySQL数据库[重复]

This question already has an answer here:

What I want to achieve: I want to use a simple PHP form to send data to a MySQL database. However, when the input contains a certain string, I want to remove it before it is saved in the MySQL database.

Example: input is 'https://www.google.com', but I want to remove the 'https://' part, so only 'www.google.com' is saved in the database.

</div>
  • 写回答

1条回答 默认 最新

  • dongwo2772 2018-02-12 20:55
    关注

    You can use str_replace() to remove the parts you don't want:

    $input = 'https://www.google.com';
    $replaced = str_replace('https://', '', $input);
    
    echo $replaced;
    

    If you want to replace multiple values in one pass, you also do that (this will remove http://, https:// and ftp://):

    $unwanted  = array("http://", "https://", "ftp://");
    $replace   = array("", "", "");
    
    $replaced = str_replace($unwanted, $replace, $input);
    

    See: https://secure.php.net/manual/en/function.str-replace.php

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办