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

  • Home
  • SEARCH
  • 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 8839807
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T10:19:11+00:00 2026-06-14T10:19:11+00:00

Code example; PHP Web Page: (index.php) <html><head></head> <body> <?php include(class_validation.php); $val = new validation();

  • 0

Code example;

PHP Web Page: (index.php)

 <html><head></head>
    <body>
    <?php 
    include("class_validation.php");
    $val = new validation();

        if(isset($_POST['action'])) doSomething();

    function doSomething() {
        $val->validate(); //I AM UNABLE TO DO THIS!
    }
    ?>
    </body>
    </html>

PHP file: (class_validation.php)

<?php
class validation()
{
    function validate(){
        //some validation
    }
}
?>

QUESTION: How can I call a function from the ‘class_validation.php’ file in a function I created in my PHP web page? I can correctly call the function doSomething() as well as call the function $val->validate(); when not located in another function. I there a way to do this?

  • 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. Editorial Team
    Editorial Team
    2026-06-14T10:19:12+00:00Added an answer on June 14, 2026 at 10:19 am

    $val is out of scope in that doSomething() function call. Pass it as a parameter to the function:

    // Define the function to accept a parameter. Use a type hint to be sure it is 
    // a validation object
    function doSomething(validation $val) {
      $val->validate(); 
    }
    
    if(isset($_POST['action'])) doSomething($val);
    

    (PHP documentation on type hinting)

    Alternatively, and not recommended, you may use the global keyword inside the function to reference the global $val.

    function doSomething() {
      // Don't do it this way. The func parameter is preferred
      global $val;
      $val->validate(); 
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For example… This PHP code <?php echo '<html>'; echo '<body>'; echo '<h1>Header One</h1>'; echo
I am new to PHP+MySQL and followed an example to build a web page.
I want to retrieve the HTML code of a link (web page) in PHP.
When I execute this following code for example: cart.php?p=1&action=add <?php session_start(); if (isset($_GET['p']) &&
I want to add code php to variable with html, for example $html =
http://communitychessclub.com/index.php is a long web page that uses a permanent position:fixed menu based on
Blocks or pieces of PHP code are showing up in my web page suddenly
I have this code (an example that PHP generates for me)... <select id=outsideBlue3> <option
I am developing a application using PHP. Some example code is here. $url =
I have a basic PHP question, take the code below for example, let's say

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.