Skip to content

Instantly share code, notes, and snippets.

@yuya-matsushima
Created September 9, 2014 12:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuya-matsushima/9d3844e47ad65067895e to your computer and use it in GitHub Desktop.
Save yuya-matsushima/9d3844e47ad65067895e to your computer and use it in GitHub Desktop.
<div class="sample">
<?php if ($hoge === true):?>
<div class="inner">
<p>
hogehoge
</p>
<p>
<?php echo $hoge;?>
</p>
</div>
<?php else:?>
<p>
fugafuga
</p>
<?php endif;?>
</div>
.sample
<?php if ($hoge === true):?>
.inner
p hogehoge
p <?php echo $hoge;?>
<?php else:?>
p fugafuga
<?php endif;?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment