Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 20, 2019 23:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/a0cd675a7ccf8a0f14ce8715e3423528 to your computer and use it in GitHub Desktop.
Save parzibyte/a0cd675a7ccf8a0f14ce8715e3423528 to your computer and use it in GitHub Desktop.
<?php
/*
Cortar cadenas en PHP
@author parzibyte
https://parzibyte.me/blog
*/
$cadena = "Hola, mundo. Programando en PHP desde parzibyte.me";
$cortada = substr($cadena, 6, 5);
echo "Cortada: $cortada";
#Salida: Cortada: mundo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment