Advertisement
garfield

[PHP]: Criar arquivo em php

Feb 5th, 2012
748
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.32 KB | None | 0 0
  1. /*
  2.         @Nome: Criar arquivo em php
  3.         @Créditos: SuYaNw
  4.  
  5.  
  6.         Visite: http://suyanwdacio.blogspot.com
  7.         o blog fala sobre: programação,design, dicas para blog
  8.         e códigos para orkut.
  9.  
  10. */
  11. // caso o arquivo já existir, returna 0.
  12. function CriarArquivo($file)
  13. {
  14.     return !file_exists($file) ? @fopen($file, 'x') : 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement