php和js的问题?
php 1 ? php 2 function fn(){ 3 echo "inside the function:" . $var ."br /" ; 4 $var = "con 2"; 5 echo "inside the function:" .$var ."br /"; 6 } 7 $var = "con 1" ; 8 fn(); 9 echo "outside the function:" . $var ."br /" ; 10 ? js 1 function fn
php
<span> 1</span> <span>php </span><span> 2</span> <span>function</span><span> fn(){ </span><span> 3</span> <span>echo</span> "inside the function:" .<span>$var</span> ."<br>"<span>; </span><strong><span> 4 $var = "con 2"; 5 echo "inside the function:" .$var ."<br>"; </span></strong><span> 6</span> <span> } </span><span> 7</span> <span>$var</span> = "con 1"<span>; </span><span> 8</span> <span> fn(); </span><span> 9</span> <span>echo</span> "outside the function:" .<span>$var</span> ."<br>"<span>; </span><span>10</span> ?>
js
<span>1</span> <span>function</span><span> fn2(){ </span><span>2</span> <span>//</span><span>因为dada已经存在fn2函数内部了。当它在函数内部找到这个变量之后就不往外找?</span> <span>3</span> <span>alert</span>("inside the function:" + dada +"<br>"<span>); </span><span><strong>4 var dada = "con 2"; 5 <span>alert</span>("inside the function:" + dada +"<br>"); </strong></span><span>6</span> <span> } </span><span>7</span> <span>var</span> dada = "con 1"<span>; </span><span>8</span> <span> fn2(); </span><span>9</span> <span>alert</span>("outside the function:" + dada +"<br>");
如上两个代码片段,
php输出:
inside the function:
inside the function:con 2
outside the function:con 1
js输出:
inside the function:undefined
inside the function:con 2
outside the function:con 1
但是如果把红色的代码删除了,
php输出:
inside the function:
outside the function:con 1
js输出:
inside the function:con 1
outside the function:con 1
分析:
js代码中看到dada 后就在fn中找有没有定义,看到有定义了,所以就不往上面找?
但是因为定义在使用下面,所以值还是空。
删除了fn内部定义的变量后,因为在fn中没有找到dada的定义所以往外找,找到了所以为1?
php是怎么回事?

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.
