确定某些词是小写的

时间:2016-11-24 16:26:49

标签: php html

我只是在再次使用PHP,我需要一些帮助。

我正在开设一个项目,我输入一个Magic:The Gathering卡,然后转到该卡的URL并将图片保存到我的Pictures文件夹。

当我将这些单词保存到文件时,我使用ucwords来大写单词。但是,我想确保某些单词是小写的(和,等等)。我怎么能这样做?

感谢。

这是我的results.php代码:

<?php

$results = $_POST['cardname'];
$query_array = array('name'=>$_POST['cardname'], 'type'=> 'card', '.jpg');
$url = "http://gatherer.wizards.com/Handlers/Image.ashx?".http_build_query($query_array);
$img = "Pictures/" . ucwords($results) . ".png";
file_put_contents($img, file_get_contents($url));
?>

<img src="<?php echo $url ?>">
<br><br><br><br>
<form action="cardfetch.php">
  <input type="submit" value="Back">
</form>

0 个答案:

没有答案