Jump to content

sangoku

Members
  • Posts

    153
  • Joined

  • Last visited

    Never

Everything posted by sangoku

  1. That duos not help me much i need a solution where i am not dependent on external data. ANy other sugestions? like some ip ranges or somthing like that? and somthing that supports ip6
  2. Hy i have a dilemma, i need to make a site which has the possibility to figure out if the visit on the site is from the US or not... and i have no clue how to do it... any suggestions?
  3. QQ me like this way of coding looks sooooooo pretttyyy Q.Q
  4. know about int ... string tough thinks it is a class called string.... QQ
  5. Hy i usually limit the variable when i pass a class by a variable like protected function (class_name $class){ some crunching } So i limit the variable to only a class of that name.... My question is: can i somehow limit on same way a variable to be only int or array or string or somthing else... side note i know how to check a variable if it any of given cind of data... i am asking is it possible to do it the way it looks soo pretty XD
  6. Hy i know i am posting a stupid question, but i need to know exactly which extensions are suported by php. I know that i can extract rar and zip files but which files else can i extract?????
  7. XD thy very much!!!!! tooth i would be stuck on it... dam regex...... never have time to learn it...
  8. Ok i have astring that i need to convert into a stroing that can be executed via eval. I am pretty free with the input format... It can be somthing like this ( a + b ) / c > a or any other value.. or equation. Basically i need a reg ex which skips symbols and puts before the character combination "$this->" can someone help me out?
  9. WO.oW Ok that is useful... sometimes... but i cant use that. because i have an array which has many instances of objects... but here is the tricky part i dont know all attributes of the class... only one... so it is not the exact instance.... any way around that? Great one mate thank ya(damn that goblin way of speak won`t go out of ma heed the one from halls of stone from WOW.... :'( )
  10. Hy I was just wondering, on php site there are words in this function that it searches objects to... i have a array in which many instances of a same object are stored... i need only the object with the right attribute in it. is the a possibility to work here with array_search? i was plying around but ... nothing.. if someone else can make it work... congratulation! <?php class ab{ private static $count = 0; public $a = 'aaa'; public $k = 'aa'; protected $b = 'ba'; private $c='ca'; function ab(){ ab::$count++; $this->a = ab::$count.'a'; $this->b = ab::$count.'b'; $this->c = ab::$count.'c'; } } $a = array(); while($ba < 10){ $a[]= new ab(); $ba++; } $b = array_search('1a',$a); echo $b; ?> I mean to make it work so it uses arraz search not some made up functions... i can do that alone... already did...
  11. that data that you are checking is sent by the client and can be VERY easy misused and you can end up with a php file instead of a intended file... ALWAYS use the actual extention of the file to perform the test.....ALWAYS.. even that is not 100% secure.
  12. Hm, it could be that your api is generating sessions which have a giant expiration delay and your session folder gets full before any of them get destroyed... your api must be changed so when the session starts you define a finite expiration date like 7 days that would solve your problem. SOMETHING LIKE session_cache_expire or session_cache_limiter see on pp help for more info
  13. Much better, thy so much. Did not know of this function.... never used it before did not have to... XD Will add it to my sticky wall to know it exists....
  14. As you can see from the link provided he's the creator of PHP. [size=18pt]W[/size]oW I am really honored. Really.... really really.... And one side note mean the philosophical not medical definition of nuts. And yes this is becoming a spam thread... but it is fun ... am i riiiiiiiiight
  15. ok contra question. What is the referential definition of nuts...?
  16. know know, but why? is he famous? i see he has a big php message count.... and? is he fames programmer... a php developer??? And Maq if someone tells you are nuts, why duos he say it... think about it and then you will see it is actually a compliment if you understands from whom it comes.
  17. I am really sorry but i somehow can not understand what you want to say.... At all....
  18. Shame on me Q.Q.... :'( By the way thanks for the compliment i am taking that as a compliment when someone calls me buts XD i don`t see any rasmus in this thread? edit again... a mean the one who told me i had an memory corruption in my CPU.... Who is he?
  19. :'( Lol yup confused C or C++ and PhP... how to remove the false report...?
  20. Hy i was making some class.... and i had a structure where i did the folowing class a { public $t; function buga(){ $this->t = 'buga'; } function bla(){ $b &=$this->t; echo $b; } } $a= new a; $a->buga(); $a->bla(); //this outputs Notice: Undefined variable: b in C:\...\test.php on line 20 Either I am nuts or is this a bug.... Will ask on php bug report... i posted it here http://bugs.php.net/bug.php?id=51555 can someone reproduce the error and tell me the OP and the version to.. so i can confirm it...
  21. Hy guys as usual the unusal is on my mind i am still on the CMS i ma making and some tooths are on my mind.... i have a table in which i store some file data and some table which is used for the storage of the locations, trust me it has to be that way because the files have to fulfill some criteria to be stored on different locations, like min size, max size resolution extension proportions and so on... now in the other table i have to store in one row the sorting criteria.... originally i tooth just to use a query which is stored in the location table, but then i realized that when i generate the entry in the data table i would have to perform again a query to figure out where the location is because i would query against the data i just enteed to figure out its storage location... now figure how that efficient is when you have 2mil entry`s in the data table... So i figured i would store the comparing values in a string which would be processed in php: something like: 'row + row1' or 'row / row1' and because of that i figure i could even end up using something like '( row / row1) * a' or even '( row / row1) * 5' that are all normal operations which would be pretty easy to implement and i am asking if there is a function or already written function which duos that either in mysql or PHP. I could write the function alone but i am a bit uncertain how i would realize the ( ) function.....
  22. comone ppl is this forum now dead? or is that the sumer is here XD :-\
  23. hy guys i have a problem with this functino somone knows how to solve it >.< here is the code function humanize($input){ $preg_replace = array( '/([^A-Z])([A-Z][a-z]+)/U' => '$1 $2', '/([^a-z])([a-z]+)/Ui' => ' $1$2', '/([a-z]+)([^a-z])/Ui' => '$1$2 ', ); $input = preg_replace( array_keys( $preg_replace ), $preg_replace, $input ); $input = preg_split( '/\s+/', $input, -1, PREG_SPLIT_NO_EMPTY ); $input = implode( ' ', $input ); return $input; } $string = 'test Test TesT test[test] test(test) test[test test] test[test]test'; $result = humanize($string); //it outputs "test Test TesT test [test] test (test) test [test test] test [test ]test" //but it should be like this //"test Test TesT test [test] test (test) test [test test] test [test] test" As told in code //it outputs "test Test TesT test [test] test (test) test [test test] test [test ]test" //but it should be like this //"test Test TesT test [test] test (test) test [test test] test [test] test" Somone knows how to solve this? the input string is 'test Test TesT test[test] test(test) test[test test] test[test]test'
  24. X-D Ok i done it but it dous not do what i want it to found some function on other forum which works for me function humanize( $input ) { $input = preg_replace( '/([^A-Z])([A-Z][a-z]+)/U', '$1 $2', $input ); $input = preg_split( '/\s+/', $input, -1, PREG_SPLIT_NO_EMPTY ); $input = implode( ' ', $input ); // $input = strtolower( $input ); return $input; } $string = 'Test testTest TesT.test test/test [test]test test(test)'; $string = humanize( $string ); echo $string; //if should output : Test testTest TesT test test test [test] test test (test) //but it outputs Test testTest TesT.test test/test test[test] test test(test) Ok how can i bypass the est/test test[test] test test(test) part the . is not important i take it out before this XD
  25. Ye right make a hell of a server load to.... i can fetch a string to.... before arrays there were strings ... what was before string... int? :-\ preg_filter — Perform a regular expression search and replace preg_grep — Return array entries that match the pattern preg_last_error — Returns the error code of the last PCRE regex execution preg_match_all — Perform a global regular expression match preg_match — Perform a regular expression match preg_quote — Quote regular expression characters preg_replace_callback — Perform a regular expression search and replace using a callback preg_replace — Perform a regular expression search and replace preg_split — Split string by a regular expression which one and how to use it??? i think it is sine of thouse ,,, just have to figure how to use it....
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.