2

私はこれをやろうとしています

$input = "<img src="HTML/images/user.png" alt="" />";

しかし、それはうまくいきません。私は "または何かの前に / を置くべきだと知っています。助けてください

4

4 に答える 4

4

これを試して

$input = "<img src='HTML/images/user.png' alt='' />";

または

$input = "<img src=\"HTML/images/user.png\" alt=\"\" />";
于 2012-12-04T05:48:14.180 に答える
1

all you need to do is escape double quote. just like below.
\"HTML/images/user.png\" alt=\"\"

于 2012-12-04T05:50:25.663 に答える
0

これを試して

$input = "<img src='HTML/images/user.png' alt='' />";
于 2012-12-04T06:04:27.603 に答える
0

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=\"\" />";
于 2012-12-04T05:50:30.090 に答える