12

何もしたくないこともあります。

ブレークポイントを設定できるように、ステートメントが必要です。

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 では何を使用する必要がありますか?

4

3 に答える 3

15

同じトリックと他の多くの機能を使用できます。

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

XDebug を使用すると、任意の場所でxdebug_break()関数を直接呼び出すことができます。

于 2013-01-09T09:15:55.413 に答える