Guest User

Untitled

a guest
Jun 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. $temp = array(
  3. array(
  4. "Name" => "Rahul",
  5. "Task" => "Engineer",
  6. "Age" => "Blah"
  7. ),
  8. array(
  9. "Name" => "Radhika",
  10. "Task" => "Engineer",
  11. "Age" => "Blah"
  12. )
  13. );
  14.  
  15. $countForMyArray = count($temp);
  16. for ($i=0; $i < $countForMyArray; $i++) {
  17. if ($temp[$i]["Name"] != "SID") {
  18. echo "Not Found";
  19. }
  20. }
  21. ?>
Add Comment
Please, Sign In to add comment