how to force variables declaration??

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default how to force variables declaration??

    hi to all.

    i would like to know how to force to php to declare everything variable,
    example

    var $var;
    $var = bla,bla..
    var $var2 = array();
    $var2 = bla,bla..

    and issue error when a variable is instanced without declare, some idea???:


    Mack Paul Guest

  2. Similar Questions and Discussions

    1. #39091 [NEW]: Need to force variables to be declared
      From: addw at phcomp dot co dot uk Operating system: any PHP version: 5.2.0RC5 PHP Bug Type: Variables related Bug...
    2. Declaration of myPrincipal
      I got error at Implements IPrincipal when I want declare my own principal. Any boy can tell me why? Thanks Imports System.Security.Principal...
    3. Declaration
      How should i declare this in my server component? Looks like this now and i wants to declare arrTemp as ???? Private arrTemp Used like this: ...
    4. Type Declaration in asp and VB
      Have you tried this Public Sub getStandard(Byval strODBC As String, ByVal strHTML As String) Define your parameters passed by value? Maybe...
    5. Class Declaration
      What exactly are you asking? -- HTH, Kevin Spencer ..Net Developer Microsoft MVP http://www.takempis.com Big things are made up
  3. #2

    Default Re: [PHP] how to force variables declaration??

    Hello,


    This is a reply to an e-mail that you wrote on Wed, 9 Jul 2003 at 02:10,
    lines prefixed by '>' were originally written by you.
    > hi to all.
    > i would like to know how to force to php to declare everything
    > variable,
    > example
    > var $var;
    > $var = bla,bla..
    > var $var2 = array();
    > $var2 = bla,bla..
    > and issue error when a variable is instanced without declare, some
    > idea???:
    Check out:
    [url]http://uk2.php.net/error_reporting[/url]

    You want to use E_ALL to do what you described.

    David.

    --
    phpmachine :: The quick and easy to use service providing you with
    professionally developed PHP scripts :: [url]http://www.phpmachine.com/[/url]

    Professional Web Development by David Nicholson
    [url]http://www.djnicholson.com/[/url]

    QuizSender.com - How well do your friends actually know you?
    [url]http://www.quizsender.com/[/url]
    (developed entirely in PHP)
    David Nicholson Guest

  4. #3

    Unhappy how to variables declaration??

    Hello Everyone,
    Variable is nothing more than a name of data storage location in computer memory. Variables are used for storing values, like text strings, numbers or arrays............................................

    Thanks !!!!!
    Unregistered Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139