Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <?php
  2. $string = $_GET["string"];
  3.  
  4. $stringLength = strlen($string);
  5.  
  6. ?>
  7.  
  8. <html>
  9. <head>
  10. <title>Feladat 2 - Szóközök száma</title>
  11. </head>
  12. <body>
  13.  
  14. Beírt szöveg hossza : <br>
  15.  
  16. <?php
  17.  
  18. $space = 0;
  19.  
  20. for($key = 0; $key <= ($stringLength - 1); $key++)
  21. {
  22. echo $string[$key] . "<br>";
  23.  
  24. if($string[$key] == " ")
  25. {
  26. $space++;
  27. }
  28. }
  29. ?>
  30. Space-ek száma: <?php echo $space; ?>
  31.  
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement