我有以下php代码:
import 'dart:io';
...
try {
final result = await InternetAddress.lookup('google.com');
if (result.isNotEmpty && result[0].rawAddress.isNotEmpty) {
print('connected');
}
} on SocketException catch (_) {
print('not connected');
}
如果我没记错的话,查询应该返回0或1,并且可以在我的SQLite管理器中使用。在Php中获取该值并在IF ELSE语句中使用它的正确方法是什么?