gpt4 book ai didi

php - 什么是 PhP 的好 noop

转载 作者:可可西里 更新时间:2023-10-31 23:04:36 27 4
gpt4 key购买 nike

有时候我什么都不想做。

我只想有一个声明,这样我就可以设置断点。

在 c 和 objective-c 中我们有 while (false);

假设我想破坏一个函数

-(void)viewDidAppear:(BOOL)animated
{

[super viewDidAppear:animated];
self.navigationItem.leftBarButtonItem=nil;
self.navigationItem.rightBarButtonItem=nil;


[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(updateDisplays) name: NotificationUpdateArroworLocation object:nil];

PO(self.tableView.indexPathForSelectedRow);
while(false);//I put break point here so program stop here.
}

在 .net 中我们什么都不做(不确定是我编的吗?)。

我们应该在 PhP 中使用什么?

最佳答案

您可以使用相同的技巧和许多其他功能:

<?php
while (false);
// or empty output
echo '';
// or any expression without side effects
5 + 5;

如果你使用XDebug,你可以调用xdebug_break()直接在任何地方发挥作用。

关于php - 什么是 PhP 的好 noop,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14231536/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com