Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのコードを持っています:
$variable_name = bla bla bla;
この変数にこのコードを追加したい:
<a class="screenshot" rel="<?php echo $baseurl.$this->row->image; ?>" > <div class="photo"></div> </a>
誰か助けてくれませんか?
ありがとうございました
他の文字列と同様に変数に割り当てます。ただし、すでにphpモードになっているため、を削除し<?php ?>、文字列連結演算子を使用.して含める必要があります$baseurl.$this->row->image
<?php ?>
.
$baseurl.$this->row->image
$variable_name = '<a class="screenshot" rel="' . $baseurl.$this->row->image . '" > <div class="photo"></div> </a>';