私はこれをやろうとしています
$input = "<img src="HTML/images/user.png" alt="" />";
しかし、それはうまくいきません。私は "または何かの前に / を置くべきだと知っています。助けてください
これを試して
$input = "<img src='HTML/images/user.png' alt='' />";
または
$input = "<img src=\"HTML/images/user.png\" alt=\"\" />";
all you need to do is escape double quote.
just like below.
\"HTML/images/user.png\" alt=\"\"
これを試して
$input = "<img src='HTML/images/user.png' alt='' />";
Note that you have use "
for PHP already.
You can either choose to use '
or \"
.
For example,
$input = "<img src='HTML/images/user.png' alt='' />";
$input = "<img src=\"HTML/images/user.png\" alt=\"\" />";