选中需要注释代码,使用ctrl+/快捷键进行注释
- 发布:2022-06-09 08:50
- 更新:2022-06-09 09:52
- 阅读:247
产品分类: HbuilderX
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: Windows 10
HBuilderX版本号: 3.4.14
操作步骤:
预期结果:
// $return_data = [
// 'code' => '500',
// 'msg' => '未定义消息',
// 'ver' => self::$ver,
// 'data' => is_array($data) ? $data : [],
// ];
// if (empty($code)) return $return_data;
// $return_data['code'] = $code;
// if(!empty($msg)){
// $return_data['msg'] = $msg;
// }else if (isset(ReturnCode::$return_code[$code]) ) {
// $return_data['msg'] = ReturnCode::$return_code[$code];
// }
// return json($return_data);
// }```
// $return_data = [
// 'code' => '500',
// 'msg' => '未定义消息',
// 'ver' => self::$ver,
// 'data' => is_array($data) ? $data : [],
// ];
// if (empty($code)) return $return_data;
// $return_data['code'] = $code;
// if(!empty($msg)){
// $return_data['msg'] = $msg;
// }else if (isset(ReturnCode::$return_code[$code]) ) {
// $return_data['msg'] = ReturnCode::$return_code[$code];
// }
// return json($return_data);
// }```
实际结果:
$return_data = [
'code' => '500',
'msg' => '未定义消息',
'ver' => self::$ver,
'data' => is_array($data) ? $data : [],
];
if (empty($code)) return $return_data;
$return_data['code'] = $code;
if(!empty($msg)){
$return_data['msg'] = $msg;
}else if (isset(ReturnCode::$return_code[$code]) ) {
$return_data['msg'] = ReturnCode::$return_code[$code];
}
return json($return_data);
} -->```
$return_data = [
'code' => '500',
'msg' => '未定义消息',
'ver' => self::$ver,
'data' => is_array($data) ? $data : [],
];
if (empty($code)) return $return_data;
$return_data['code'] = $code;
if(!empty($msg)){
$return_data['msg'] = $msg;
}else if (isset(ReturnCode::$return_code[$code]) ) {
$return_data['msg'] = ReturnCode::$return_code[$code];
}
return json($return_data);
} -->```
bug描述:
PHP代码使用快捷键批量注释变成了html的注释方式了