PHP:如何在<a href="nunm-press.com">中插入缺失的HTTP?

huangapple go评论60阅读模式
英文:

PHP: how to insert HTTP in <a href="nunm-press.com"> that doesn't have any?

问题

需要将一个链接列表(10,000个)中没有HTTP的链接插入一个HTTP,例如:

&lt;a href=&quot;nunm-press.com&quot;&gt;

&lt;a href=&quot;http://nunm-press.com&quot;

有什么建议吗?

我搜索了“str_replace replace only if doesn't exist”,但没有找到任何结果。

英文:

I need to insert only a HTTP in a list of links (10,000) that doesn't have one, for exemple

&lt;a href=&quot;nunm-press.com&quot;&gt;

From

&lt;a href=&quot;nunm-press.com&quot;
to
&lt;a href=&quot;http://nunm-press.com&quot;

Suggestions?

I search for "str_replace replace only if doesn't exist", found nothing.

答案1

得分: 1

I can provide the translated code for you:

我不太理解你的问题,但如果你正在使用php并且想要设置http或https,你可以尝试这样做。

$url = 'nunm-press.com';
$parsed_url = parse_url($url);
if (!isset($parsed_url['scheme'])) {
    $url = 'http://' . $url;
}
echo '<a href="' . $url . '">Link</a>';

请注意,这只是给你提供了代码的中文翻译。如果你有任何其他问题或需要进一步的帮助,请随时告诉我。

英文:

I dont exactly understand your question but if you are using php and you want to set http or https you can try this.

$url = &#39;nunm-press.com&#39;;
$parsed_url = parse_url($url);
if (!isset($parsed_url[&#39;scheme&#39;])) {
    $url = &#39;http://&#39; . $url;
}
echo &#39;&lt;a href=&quot;&#39; . $url . &#39;&quot;&gt;Link&lt;/a&gt;&#39;;

答案2

得分: 0

你可以使用str_replace函数。

<?php
$string = '<a href="nunm-press.com">';
$string_replace = str_replace('href="', 'href="http://', $string);
echo $string.' >> '.$string_replace;
?>
英文:

you can use str_replace function

&lt;?php
$string=&#39;&lt;a href=&quot;nunm-press.com&quot;&gt;&#39;;
$string_replace=str_replace(&#39;href=&quot;&#39;,&#39;href=\&quot;http://&#39;,$string);
echo $string.&#39; &gt;&gt; &#39;.$string_replace;
?&gt;

huangapple
  • 本文由 发表于 2023年5月7日 04:15:05
  • 转载请务必保留本文链接:https://go.coder-hub.com/76190936.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定