Guest User

Untitled

a guest
Jun 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. function limparCoordenada($addr) {
  2. $itemsLimpar = array("POINT(", ")");
  3. $addr = str_replace($itemsLimpar, "", $addr);
  4. $coordLimpa = explode(" ", $addr);
  5. return $coordLimpa;
  6. }
Add Comment
Please, Sign In to add comment