Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 478 Bytes

cadenes.md

File metadata and controls

22 lines (13 loc) · 478 Bytes

Cadenes (Strings)

Un cadena o string és una seqüència de caràcters.

PHP String Functions

The PHP strlen() function returns the length of a string.

  <?php
    echo strlen("Hello world!"); // outputs 12
  ?>

Provar l'exemple

Més informació