Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
dvprog_11 [2020-02-06 12:04]
Daniel Viström
dvprog_11 [2020-02-06 13:02]
Daniel Viström
Line 86: Line 86:
 // Huvudprogram // Huvudprogram
 include 'head.php'; include 'head.php';
- 
-// php har en massa färdiga funktioner, bl.a. för strängar. 
-// Värdet som returneras kan skrivas ut eller 
-// sparas i en variabel. 
-echo strrev('.dlrow olleH') . '<br>';  //Direkt utskrift av det returnerade värdet. 
-$text = 'dallas'; 
-$text2 = strrev($text);  // Här sparas det returnerade värdet i en variabel. 
-echo $text2 . '<br>'; 
  
 $tal1 = 5; $tal1 = 5;