Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 106767
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T01:38:55+00:00 2026-05-11T01:38:55+00:00

Is there any way to force PHP to blow up (error, whatever) if I

  • 0

Is there any way to force PHP to blow up (error, whatever) if I misspell a variable name? What about if I’m using an instance of a class and I spell the name of a variable wrong?

[I know that I should just get used to it, but maybe there’s a way to enforce name checking?]

Thanks!

Edit: Sorry, that wasn’t very specific. Here’s the code, and I would like to get two errors. Right now I only get one (for the last line).

error_reporting(E_ALL|E_STRICT); class Joe {     public $lastName; }  $joe = new Joe(); $joe->lastNombre = 'Smith'; echo 'And here it is ' . $jose; 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T01:38:55+00:00Added an answer on May 11, 2026 at 1:38 am

    Here is something I whipped up really quickly to show how you can trigger errors when something like that happens:

    <?php  error_reporting( E_ALL | E_STRICT );  class Joe {     public $lastName;      public function __set( $name, $value ) {         if ( !property_exists( $this, $name ) ) {             trigger_error( 'Undefined property via __set(): ' . $name, E_USER_NOTICE );             return null;         }         $this->$name = $value;     }      public function __get( $name ) {         if ( !property_exists( $this, $name ) ) {             trigger_error( 'Undefined property via __get(): ' . $name, E_USER_NOTICE );             return null;         }         return $this->$name;     } }  $joe = new Joe(); $joe->lastNom = 'Smith'; echo $joe->lastNom , '\n';  ?> 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'd like to know if there's any way to force the System.Net.Dns class to
Is there any way to force an update of software using RunOnce, without having
Is there any way to force a Route to be executed, only if all
Is there any way to force a browser to refresh or empty it's cache,
Is there any way to force wpf to run the value converter again on
Is there any way to force an alignment of a particular element of a
Is there any way I can run class files (i.e. with main as the
Is there any way (server or client side) to force the browser to pull
Is there any way to force Outlook to display HTML in the desktop alert
Is there any way to force a compiler (well GCC specifically) to make a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.