我有一个下面的代码,<?=但不是<?或<?php
<?= $form->create('Upload', array('type'=>'file')); ?>
<?= $form->input('file', array('type'=>'file')); ?>
Run Code Online (Sandbox Code Playgroud)
做了<?=什么
谢谢
<?php echo $form->create('Upload', array('type' => 'file')); ?>
Run Code Online (Sandbox Code Playgroud)
相当于
<?= $form->create('Upload', array('type' => 'file')); ?>
Run Code Online (Sandbox Code Playgroud)
.