treehouse : what would you like to learn today?
Web Design Web Development iOS Development

PHP Array Contains

Last updated on:

Check if value is in array and outputs Yes or No

<?php
$names = array( 'Bob', 'Jim', 'Mark' );
echo 'In Array? ';
if (in_array(‘foo’, $names))
   echo 'Yes';
else
   echo 'No';
?>
View Comments

Comments

  1. Permalink to comment#

    alert(“wat?”);

  2. Nice! Exactly what I was looking for.
    I found it helpful.
    Thanks!

  3. Tks man! I was looking for it!

  4. Permalink to comment#

    Had an AHA moment when i tried this out for a project i was working on

  5. Permalink to comment#

    Thanks, you saved me some work

  6. So simple :) Thanks!

  7. Permalink to comment#

    Thanks a bunch! Much better solution than I would have done otherwise.

Leave a Comment

Use markdown or basic HTML and be nice.