pegar parte da string php

Solutions on MaxInterview for pegar parte da string php by the best coders in the world

showing results for - "pegar parte da string php"
Sofie
01 Jan 2017
1
2<?php
3$rest = substr("abcdef", -1);    // retorna "f"
4$rest = substr("abcdef", -2);    // retorna "ef"
5$rest = substr("abcdef", -31); // retorna "d"
6?>
7
8